From 825a9cd41d07fb7c8cc99a74b8ea04ce561318ca Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 19 Jan 2001 16:14:09 +0000 Subject: [PATCH] (report-emacs-bug): Report values of locale-coding-system, default-enable-multibyte-characters, and the environment variables LC_ALL, LC_TYPE, and LANG. --- lisp/mail/emacsbug.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index 5065a747daf..89b47fcbc97 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -111,6 +111,13 @@ translators to read other languages for them.\n\n")) (not (equal system-configuration-options ""))) (insert "configured using `configure " system-configuration-options "'\n")) + (insert "Important settings:\n") + (insert (format " value of $LC_ALL: %s\n" (getenv "LC_ALL"))) + (insert (format " value of $LC_TYPE: %s\n" (getenv "LC_TYPE"))) + (insert (format " value of $LANG: %s\n" (getenv "LANG"))) + (insert (format " locale-coding-system: %s\n" locale-coding-system)) + (insert (format " default-enable-multibyte-characters: %s\n" + default-enable-multibyte-characters)) (insert "\n") (insert "Please describe exactly what actions triggered the bug\n" "and the precise symptoms of the bug:\n\n") -- 2.30.2